home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / postgres / mpsql-1.001 / mpsql-1~ / mpsql-1.0 / menu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-28  |  799 b   |  23 lines

  1. /************************************************************************/
  2. /* File   : menu.h                                    */
  3. /* Purpose: menu module header                                     */
  4. /* By     : Keith R. Davis                                */
  5. /* Date   : 9/9/95                                    */
  6. /* Notes  : creates the application's menu                            */
  7. /*          Copyright(c) 1996 White River Software                      */
  8. /************************************************************************/
  9.  
  10. #ifndef _MENU_H
  11. #define _MENU_H
  12.  
  13. Widget    CreateMenuBar(Widget parent);
  14.  
  15. void    CreateFilePane(Widget parent);
  16. void    CreateEditPane(Widget parent);
  17. void    CreateQueryPane(Widget parent);
  18. void    CreateOptionsPane(Widget parent);
  19. void    CreateBufferPane(Widget parent);
  20. void    CreateHelpPane(Widget parent);
  21.     
  22. #endif    
  23.